home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
C
/
Applications
/
Python 1.3.3
/
stdwin
/
Gen
/
wperror.c
< prev
next >
Wrap
Text File
|
1995-12-21
|
229b
|
17 lines
/* STDWIN -- UNIVERSAL WPERROR. */
#include "tools.h"
#include "stdwin.h"
/* STDWIN equivalent of perror(). */
void
wperror(name)
char *name;
{
char buf[256];
sprintf(buf, "%s: Error %d.", name, errno);
wmessage(buf);
}